home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_446 / post / post.doc < prev    next >
Text File  |  1992-05-06  |  24KB  |  669 lines

  1. Postscript interpreter - user documentation
  2. ===========================================
  3.  
  4. Post V1.4 Copyright Adrian Aylward 1989, 1991
  5.  
  6. Free use and non-commercial reproduction of the binaries of the interpreter
  7. library (post.library) is permitted, providing that the copyright notices
  8. are not removed.  Distribution by disk libraries is permitted provided only
  9. a nominal copying fee is charged.
  10.  
  11. You may freely copy, use and modify the user interface program (post).  The
  12. source is included in the distribution.
  13.  
  14. All other rights are reserved.  For queries and bug reports write to the
  15. author:
  16.  
  17.         Adrian Aylward,
  18.         20 Maidstone Road,
  19.         SWINDON,
  20.         Wiltshire.
  21.         UK.
  22.  
  23. No responsibilities accepted for bugs, but please let me know so I can fix
  24. them.
  25.  
  26. Introduction
  27. ============
  28.  
  29. "Post" is a software based PostScript interpreter, presently running on the
  30. Amiga.  The source code is written in C, and should be fairly portable to
  31. other machines.  It supports the full Adobe language, with only minor
  32. variations.
  33.  
  34. Prerequisites
  35. =============
  36.  
  37. Post uses the Arp library (V39+), primarily for its file requestor.  For
  38. interactive working you also need ConMan (V1.3+).  Both these programs are
  39. widely available; any good BBS or PD/shareware library should have them.
  40. (ConMan is shareware.)  You may well have them installed on your machine
  41. already.
  42.  
  43. If you prefer not to install ConMan as your standard console handler, you
  44. will need to access it via an alternative device name, which you must
  45. specify by the CONDEV option.
  46.  
  47. You will need at least a megabyte of memory, more for high density printer
  48. output.
  49.  
  50. Command line interface
  51. ======================
  52.  
  53. usage:
  54.     post [files...] [IFF file] [SCREEN] [PRINTER] [INTERACTIVE]
  55.          [SIZE xyod..s..p.bc.] [MEM fhlv..] [CLOSEWB] [CONDEV con]
  56.  
  57. If you forget, type "post ?" to display this.
  58.  
  59. The input files
  60. ---------------
  61.  
  62. The interpreter reads the input files in turn.  When running interactively
  63. the input files are treated as startup files, and are rerun whenever the
  64. interpreter is restarted.  So you would normally specify just the standard
  65. startup file "init.ps", or an alternative of your own.  When running
  66. non-interactively you should in addition specify all the files you want to
  67. interpret, up to 5 in total; when the last is finished the interpreter will
  68. exit.
  69.  
  70. Printer output
  71. --------------
  72.  
  73. This is the default if neither the IFF nor SCREEN options are used, when
  74. running non-interactively.  The output is sent to the printer device as a
  75. graphic dump.
  76.  
  77. The interpreter will obtain default values for the page size, density, and
  78. number of colors from the current preferences.  If you use the default sizes
  79. make sure you have set the page size: run preferences and on the graphic 2
  80. screen set the width and height limits -  either bounded or absolute or in
  81. pixels.  The output defaults to black and white or 3 colour, according to
  82. the preferences.
  83.  
  84. IFF file output
  85. ---------------
  86.  
  87. This option will send the output to an IFF file.  Each IFF file contains a
  88. single FORM ILBM.  So that multiple pages may be created in a single run of
  89. the interpreter, sequence numbers are automatically generated:
  90.  
  91.     IFF path/fred*.pic   will generate  path/fred1.pic, path/fred2.pic ...
  92. and IFF path/fred??.pic  will generate  path/fred01.pic, path/fred02.pic ...
  93.  
  94. The default page size etc. is the same as for screen output.
  95.  
  96. SCREEN output
  97. -------------
  98.  
  99. This option  will send the output to a window on the interactive screen.  It
  100. implies interactive working.
  101.  
  102. You can generate screen, printer and IFF output at the same time.  But since
  103. screen output has to use chip memory and printer output at high resolution
  104. needs a large page buffer (about a megabyte for an A4 page at 300 dpi.) you
  105. will probably run out of memory if you attempt the two simultaneously.
  106.  
  107. The default screen size is the same as the workbench screen, but in
  108. interlace mode.  The default page size is A4, with a density of 75 pixels
  109. per inch.  The default number of colours is 3.  The page size is rounded up
  110. to the maximum size of the window.
  111.  
  112. The INTERACTIVE option
  113. ----------------------
  114.  
  115. This option causes the interpreter to run interactively.  A screen is opened
  116. and on it appears a requestor window for the parameters.  If you click on
  117. OK two windows will be opened, one for console input and output, and the
  118. other to display the page buffer.  Use the menus.
  119.  
  120. The SIZE option
  121. ---------------
  122.  
  123. The SIZE option sets the page size and density etc..
  124.  
  125.     SIZE "x..y..s..xo..yo..[x]d..[y]d..p.bc."
  126.  
  127. Up to 5 SIZE options are allowed; later values override earlier ones.
  128.  
  129. The page sizes ("x..y..s..") are in pixels, as decimal numbers; "s" sets
  130. the size of the bands, for band rendering to the printer.  The page offsets
  131. (xo..yo..) are in pixels, shifting the location of the bottom left of the
  132. bitmap relative to the PostScript logical page (origin at (0,0) in the
  133. initial user space). Densities ([x]d..[y]d..) are in pixels per inch; "xd"
  134. or "yd" set the x or y density, and "d" sets both.
  135.  
  136. The printer density can be set by "p"; its value should be in the range 
  137. 1 to 7.
  138.  
  139. The number of colours is: "b" for black and white (1 bit plane), "c" or "c3"
  140. for 3 colour rgb (3 bit planes), and "c4" for 4 colour cmyk (4 bit planes).
  141.  
  142. The MEM option
  143. --------------
  144.  
  145. The MEM option controls the amount of memory allocated for workspace.
  146.  
  147.     MEM "v..f..l..h.."
  148.  
  149. Up to 5 MEM options are allowed; later values override earlier ones.
  150.  
  151.     Default  Minimum
  152.     -------  -------
  153.      f60000     1000     Font cache
  154.      h20000     1000     Halftone cache
  155.      v50000     5000     Virtual machine memory segment size
  156.      l10000     1000     Line drawing workspace segment size
  157.  
  158. In addition memory is allocated for the page buffer (one bit per pixel)
  159. and for drawing and imaging buffers.
  160.  
  161. Since most of the workspace is allocated automatically you will not usually
  162. need to adjust these options.  If your program is so large that you do need
  163. to increase any of these values, be aware that it is unlikely that it will
  164. run on any standard PostScript printer.
  165.  
  166. The font cache is used to store character bitmaps; it saves recalculating
  167. them each time they are needed, so text rendering becomes many times faster.
  168. The default value is reasonable for average sized machines; if you are
  169. trying to shoehorn things into a small machine you could try reducing it. Or
  170. if you are printing a document using a large number of different characters,
  171. fonts, and sizes you may be able to imrove performance by increasing it.
  172.  
  173. The halftone cache holds halftone patterns used for simulating gray values.
  174. The default value will normally be satisfactory, but you might possibly need
  175. to increase it if you are using very large halftone patterns, for example
  176. for complex patterned fills.
  177.  
  178. The virtual machine memory is automatically allocated in segments as they
  179. are needed, up to a maximum of 63.  For most purposes you will not need
  180. to alter the segment size, but if you are running a gigantic program you
  181. might possibly need to increase it.
  182.  
  183. The line drawing workspace holds the current path, together with all the
  184. paths saved by a gsave operation.  It is automatically allocated in
  185. segments, up to a maximum of twenty.  The default size is sufficient for
  186. about 4000 path elements, enough for all normal programs.
  187.  
  188. The CLOSEWB option
  189. ------------------
  190.  
  191. If memory is tight, you can try using this option to close down WorkBench
  192. while Post is running.  This only works if there are no application
  193. windows open on the WorkBench screen.
  194.  
  195. The CONDEV option
  196. -----------------
  197.  
  198. If you do not have ConMan installed as the default console handler, you
  199. must use this option to specify its device name (without the ":").
  200.  
  201. Examples
  202. --------
  203.  
  204. To run postscript programs interactively, rendering to the screen:
  205.  
  206.     post init.ps screen
  207.  
  208. To print a file with many big characters using a large font cache and
  209. increasing the path limit:
  210.  
  211.     post init.ps myfile.ps printer mem f500000l200000
  212.  
  213. To render a series of 640 * 512 pictures at 762 dpi. to iff files t:i01,
  214. t:i02 etc.:
  215.  
  216.     post init.ps mypics.ps iff t:i?? size x640y512d72
  217.  
  218. The WorkBench interface
  219. =======================
  220.  
  221. Just click on the icon.  It always runs interactively.  You can set up
  222. default arguments by setting the ToolTypes; add a string "ARGS=...."
  223. and it will be parsed just like the CLI startup.  For example
  224. "ARGS=init.ps screen" will define the standard startup file and make the
  225. screen the default output.
  226.  
  227. The Menus
  228. =========
  229.  
  230. Project
  231.     Restart              Takes you back to the parameters requestor, after
  232.                          which the interpreter is reinitialised.
  233.  
  234.     Quit                 Quit from the program
  235.  
  236. File
  237.     Load font            Loads a file from the PSFonts: directory by default
  238.  
  239.     Load file            Loads a file, without saving or restoring the VM
  240.  
  241.     Run file             Runs a file, saving VM before and restoring after
  242.  
  243.     Interactive          Interprets interactive input
  244.  
  245. Control
  246.     Pause every page     Toggles pause every showpage/copypage
  247.  
  248.     Continue after pause Does just that
  249.  
  250.     Interrupt            Sends a break; equivalent to CTRL/C
  251.  
  252. Before and after executing a file the operand stack is cleared.  This is
  253. to prevent invalidrestore errors, particularly if interpretation ended in
  254. error with values on the stack.  If you need to leave things on the stack
  255. you will have to run the files from a driver file, or from the interactive
  256. window.  At the end of the file, (after any restore), the page is erased.
  257.  
  258. If you use the automatic font loading, as defined in the standard startup
  259. file "init.ps", the font will be discarded when the VM is restored.  To
  260. avoid repeated reloading of common fonts it may be better to use the "Load
  261. font" menu item to preload the ones you want.  N.B. there is no check to
  262. stop you loading the same one twice; it will probably work but it will
  263. waste memory.
  264.  
  265. Compatability
  266. =============
  267.  
  268. The interpreter is based upon the language (version "23.0") as described by
  269. the (red) book:
  270.  
  271.     "PostScript Language Reference Manual"
  272.     Adobe Systems Incorporated,
  273.     Addison-Wesley 1985, ISBN 0-201-10174-2
  274.  
  275. The 4 colour operators are also supported as described by the document:
  276.  
  277.     "PostScript Language Color Extensions"
  278.     Adobe Systems Incorporated (23-Jan-90)
  279.  
  280. File handling
  281. -------------
  282.  
  283. The files %stdin, %stdout, %stderr are permanently open as far as the
  284. operating system is concerned.  Attempts to close them will invalidate the
  285. file object but not close them to the operating system.  If they are
  286. connected to a terminal they will be unbuffered, so output will be
  287. transmitted immediately, without waiting for a "flush".  The special files
  288. %statementedit and %lineedit are not supported.  There is no end of file
  289. control character.
  290.  
  291. Error handling
  292. --------------
  293.  
  294. All the standard Adobe error conditions are supported.  There also some
  295. additional errors:
  296.  
  297. The error "invalidstop" will be generated if a "stop" operator is executed
  298. not within any encolsing "stopped" context.
  299.  
  300. The error "memoryallocation" will be executed if the interpreter is unable
  301. to obtain sufficient memory from the operating system.
  302.  
  303. The execution stack
  304. -------------------
  305.  
  306. The exact contents of the execution stack are not defined by the language
  307. reference manual, and cannot therefore be guaranteed to be the same as other
  308. implementations.  Dumping the stack is likely to yield useful debugging
  309. information but is not recommended for normal programming.
  310.  
  311. Colour mapping
  312. --------------
  313.  
  314. The interpreter can run with one bit plane (for black and white printers),
  315. 3 bit planes (red, green, blue) or 4 bit planes (cyan, magenta, yellow,
  316. black).  For screen output 3 bit planes are appropiate.  For a colour
  317. printer the 3 or 4 colour model can be used.  The output is always in
  318. binary; gray scale is supported only via the halftone mechanism.
  319.  
  320. For low resolution colour printers the 3 colour model is probably best.
  321. The 4 color model is for high resolution colour printers that can generate
  322. high frequency halftone screens, where a fourth screen is used to improve
  323. the quality of the blacks and grays.
  324.  
  325. (N.B. the preferences printer drivers only handle 3 colour model, so if
  326. you want to use the 4 colour model you will probably need to generate an
  327. IFF file and write your own print dump program.  They will however
  328. automatically use black the ribbon/ink if the printer has one)
  329.  
  330. The transformations between the RGB and the HSB models are based on those in
  331. the book:
  332.  
  333.     "Procedural Elements for Computer Graphics"
  334.     David F. Rogers,
  335.     McGraw-Hill 1985, ISBN 0-E07-053534-5.
  336.  
  337. Band Rendering
  338. --------------
  339.  
  340. For a high resolution printer the page buffer can be quite large (a megabyte
  341. or so).  If you don't have enough memory to hold the entire page at once you
  342. can render each one in several bands.  Set the "SIZE s..." option to the
  343. largest band size you have space for.  (For matrix printers it will probably
  344. be best to make it a multiple of the number of printer pins times the number
  345. of vertically displaced passes).  Then run the postscript program generating
  346. each page once for each band, using the "setband" operator, which is
  347. described below, to set the base for each band.  Start at a base of zero
  348. and increment the base by the band size until you reach the page height.
  349. Each band is sent to the printer as a separate graphic dump; the last band
  350. generates a form feed to eject the page.  You can use the "currentband"
  351. operator to calculate the number of bands needed:
  352.  
  353.     currentband 1 sub { setband pageproc } for 0 setband
  354.  
  355. will execute "pageproc" once for each band (remaining) on the page.  The
  356. procedure should execute copypage (or showpage) exactly once per iteration.
  357.  
  358. This technique is only suitable for printer output.  There is a special
  359. driver program "postband" that handles this automatically for programs
  360. that conform to the Adobe structuring conventions.
  361.  
  362. Fonts
  363. -----
  364.  
  365. There are no fonts built in to the interpreter; they must all be downloaded.
  366. The findfont operator will execute the error invalidfont if the font you
  367. request is not present in the font dictionary.  You can redefine it, perhaps
  368. to search the Unix/Amiga filing system to automatically download fonts or to
  369. substitute a default font.  See the standard startup file.
  370.  
  371. Both type 1 (Adobe encrypted format) and type 3 (standard PostScript as per
  372. the red book) fonts are now supported.  In addition the IBM font format can
  373. be read directly.
  374.  
  375. The font caching will work significantly better if all your fonts have
  376. UniqueID's.  Then repeated makes of the same font with the same matrix will
  377. be cached, and cached character bitmaps can be retained even if the font
  378. is removed by a restore operation.  N.B. if fonts are downloaded after a
  379. save they will be removed by the corresponding restore; in the interests of
  380. efficiency it may therefore be better to preload them.
  381.  
  382. Other features
  383. --------------
  384.  
  385. Names of the form //name are looked up immediately by the scanner, and
  386. packed arrays have been implemented.  These features were not on the
  387. original Adobe red book, but were added to the language specification later.
  388.  
  389. When scanning the contents of a string, if there any embedded strings the
  390. escape sequences are interpreted just as they are in a file.  This follows
  391. the specification of the more recent Adobe interpreters (including display
  392. PostScript) and not the original red book.
  393.  
  394. Operators omitted or changed
  395. ----------------------------
  396.  
  397.     banddevice
  398.  
  399. Not appropiate for the Unix/Amiga environment.
  400.  
  401.     bytesavailable
  402.  
  403. Since we can't tell how many bytes are available we always return -1.
  404.  
  405.     copypage
  406.  
  407. For printer output this works like the standard.  The number of pages
  408. printed is equal to #copies.  For screen output it does not need to do
  409. anything, as the screen is not buffered.  For IFF file output it writes the
  410. page to the next file.
  411.  
  412.     echo
  413.  
  414. Not appropiate for the Unix/Amiga environment.
  415.  
  416.     eexec
  417.  
  418. This is implemented as per the Adobe type 1 fonts book.  Its operand must be
  419. a file, which must match the object on top of the execution stack.  It can be
  420. terminated only by a closefile (which terminates the eexec but does not
  421. actually close the file).  So the sequences "currentfile eexec" and
  422. "currentfile closefile" as described in the book will work, but other
  423. combinations will likely fail.
  424.  
  425.     executive
  426.  
  427. There is no executive, as the interpreter supports interactive usage
  428. directly.
  429.  
  430.     findfont
  431.  
  432. Looks in the FontDirectory.  If it can't find the supplied key, it executes
  433. the error invalidfont.
  434.  
  435.     flushfile
  436.  
  437. We don't check for errors when flushing an input file, to prevent recursion
  438. in the error handler.
  439.  
  440.     framedevice
  441.  
  442. Not appropiate for the Unix/Amiga environment.
  443.  
  444.     prompt
  445.  
  446. Not called by the interpreter.  See "prompts" instead.
  447.  
  448.     renderbands
  449.  
  450. Not appropiate for the Unix/Amiga environment.
  451.  
  452.     resetfile
  453.  
  454. Does nothing.
  455.  
  456.     showpage
  457.  
  458. See the notes for copypage above.
  459.  
  460.     usertime
  461.  
  462. Returns the time elapsed since the interpreter started, with a resolution of
  463. one second.
  464.  
  465. Operators added
  466. ---------------
  467.  
  468.     currentband
  469.  
  470.         "currentband" base size height
  471.  
  472. Returns the base of the current band, size of each band, and total height
  473. of the page.
  474.  
  475.     setband
  476.  
  477.         base "setband"
  478.  
  479. Sets the base height of the band being rendered.  The value must be greater
  480. than or equal to zero and less than the total height of the page.
  481.  
  482.     fontfile
  483.  
  484.         (filename) "fontfile"
  485.  
  486. Opens a file for reading.  If the first byte is hex "80" the file is assumed
  487. to be in IBM font format, and its contents are converted to standard
  488. ascii/binary as they are read.  The standard input file (%stdin) is never in
  489. IBM font format.
  490.  
  491.     invalidstop
  492.  
  493.         (error)
  494.  
  495. A "stop" has been executed for which there is no dynamically enclosing
  496. "stopped" context.
  497.  
  498.     prompts
  499.  
  500.         string string "prompts"
  501.  
  502. The first string is used as the prompt when the interpreter is scanning
  503. terminal input and executing it immediately; the second string is used when
  504. execution is defered while scanning the contents of a procedure "{ ... }".
  505. No prompt is given when a newline is encountered within a string.
  506.  
  507.     vmhwm
  508.  
  509.         "vmhwm" hwmused maximum
  510.  
  511. Returns two integers: the high water mark of the amount virtual memory used
  512. since the program was first started or the last "vmhwm", and the maximum
  513. available amount of memory.
  514.  
  515.     callextfunc
  516.  
  517.         result arg1 arg2 ... argc func "callextfunc" result
  518.  
  519. Calls an external function using a C calling sequence.  This operator is not
  520. available for use by ordinary PostScript programs; it can only be used when
  521. the library is called with an external function table supplied as an argument
  522. (see the library interface documentation for details).  The "func" argument
  523. is the index of the function in the external call table, and "argc" is the
  524. number of parameters; both must be non-negative integers.  The result is
  525. the object in which the result will be placed.  If it a null then no result
  526. will be returned and the null object will be discarded; otherwise it must
  527. match the type of the result returned from the function.  For both result and
  528. parameters bool and integer types will work OK; real types will work if your
  529. C compiler passes them just like ints (use ANSI prototypes so it does not
  530. expand them to double).  For string parameters the address is passed.  Arrays
  531. may be passed as parameters, but they are only useful if you know their
  532. PostScript object representation.  The maximum number of parameters
  533. permitted is 20.
  534.  
  535. Miscellaneous
  536. -------------
  537.  
  538. The system dictionary is left writeable so that standard preludes can add
  539. things to it - possibly removing write permission when they have finished.
  540. Similarly FontDirectory is writeable, so that it is possible to add entries
  541. without using definefont.
  542.  
  543. Device space
  544. ------------
  545.  
  546. The largest device that the interpreter can handle is 30000 by 30000
  547. pixels.  In practice you will probably run out of memory long before
  548. reaching this limit.
  549.  
  550. Known Bugs
  551. ==========
  552.  
  553. If you close down WorkBench the menus sometimes get truncated and slightly
  554. corrupted.  I suspect this is a Workbench/Intuition problem.
  555.  
  556. If you type CTRL/C to abort if the printer is not ready then strange things
  557. may happen on subsequent attempts to print.
  558.  
  559. N.B. if you run very low on memory, Intuition may behave strangely, and
  560. refuse to resize windows etc..  This is not a bug in Post.
  561.  
  562. If you type CTRL/backslash in the interactive window you won't be able to
  563. run interactively again until a restart.
  564.  
  565. Post tries to keep the console window active, so that all keyboard input
  566. goes there.  It will probably be incompatible with mouse handlers that
  567. automatically activate the window under the cursor.
  568.  
  569. Versions
  570. ========
  571.  
  572.     V0.0  14-Nov-89 (prerelease)
  573.  
  574. The original.
  575.  
  576.     V0.1  06-Dec-89 (prerelease)
  577.  
  578. Image routines added.
  579.  
  580. Range checks eased on gray levels and colours etc..
  581.  
  582. Area filling speeded up, matrix manipulation and colour mapping rewritten,
  583. numeric conditioning improved for path fill.
  584.  
  585. Bugs fixed: syntax error, == string escapes, error handling and quit when
  586. recursing, vm error handling, integer overflow in path fill, matrix save,
  587. interrupt after printing page, dictionary second save, name table restore,
  588. boolean type checking, multiple halftone screens memory allocation.
  589.  
  590.     V0.2  07-Jan-90 (prerelease)
  591.  
  592. Font and character routines added.  Null device added.  Band rendering of
  593. printer output added.
  594.  
  595. Matrix manipulation rewritten again.  Interpreter recursion rewritten.
  596. Allocate stacks dynamically.
  597.  
  598. Bugs fixed: missing access checks on strings, scan token negative chars,
  599. depth check in path flattening, pathbbox, strings or null objects as
  600. dictionary keys, shade after grestore(all), fill/image with clip region,
  601. clip unclosed subpath, dictstack/execstack.
  602.  
  603.     V1.0  12-Feb-90
  604.  
  605. Support for big scrollable windows added.  Menu handler added with port
  606. name option.  Workbench startup added with parameters requestor window.
  607.  
  608. Hex string scan optimised.  Break now CTRL/C only, not CTRL/D.
  609.  
  610. Bugs fixed: aspect ratio in iff file, clipping pictures much wider than the
  611. page.
  612.  
  613.     V1.1  27-Mar-90
  614.  
  615. Interpreter made into shared library.  Message port interface removed.
  616. Band printing driver now included.
  617.  
  618. Immediate lookup of //name added.  Packed arrays added.  CR and CRLF now
  619. converted to LF for readline and when scaning tokens from a file.  Copypage
  620. now takes account of #copies. 
  621.  
  622. Bugs fixed: slow images where strings are not rectangles, attributes after
  623. copy and bind, charpath with fonts using gsave, iff run compression,
  624. setundercolorremoval now conforms to Adobe spec, make errorname literal,
  625. slow images repositioned by 1/2 pixel.
  626.  
  627.     V1.2  14-Oct-90
  628.  
  629. Allow multiple SIZE and MEM options.
  630.  
  631. Page offset option added, page size defaults to A4, integer gadgets checked
  632. for +ve values.
  633.  
  634. Type 1 fonts, IBM font format, encrypted files, eexec operator added.
  635.  
  636. Bugs fixed: location zero not zero, printer device signals, proc arrays not
  637. executable, bind packed arrays, restore closing files, makefont matrices not
  638. commutative, makefont with translation, error handling during recursion,
  639. graphics state within buildchar proc, miterlimit less that sqrt(2), cvs
  640. copying too many bytes, solid lines after dashes, floating point error trap
  641. recursion (2620 version on 68882), check for fpu present, charpath with null
  642. character path, error handling loading file, invalid restore check,
  643. writehexstring.
  644.  
  645.     V1.3  27-Oct-90
  646.  
  647. LaserJet driver added.
  648.  
  649. Interface fixes: Menus no longer ghost after startup file error and restart,
  650. pause status is now retained over a restart, printer preferences page size
  651. is now handled correctly, no longer crashes if arp.library is missing.
  652.  
  653. Bugs fixed: IBM binary eexec sections beginning with white space, funny
  654. characters in error message command names, hints with stems of negative
  655. width, font character cache sizing, tune baseline alignment and flex,
  656. eexec lines ending in CR (not CRLF), aload packed arrays, zero length
  657. charstrings, font character cache hash chains.
  658.  
  659.     V1.4  ??-???-??
  660.  
  661. External function call interface added.  New flexible memory allocation for
  662. vm and paths; new error "memoryallocation".  More flexible font cache limit.
  663.  
  664. Interface fixes: Memory Fonts/Paths gadgets transposed, drag scroll bars
  665. under 2.0.
  666.  
  667. Bugs fixed: writehexstring, zero height clipped paths, $error in userdict,
  668. undocumented charstring codes, halftone cacheing, mixed type 1 and 3 fonts.
  669.